executeAt

Execute the given comamnd at the given directory

@trusted
void
executeAt
(
scope const(char[])[] args
,
scope const(char)[] cwd = buildNormalizedPath(__FILE_FULL_PATH__).dirName()
,
scope const string[string] env = null
,
bool debugInfo = false
)

Parameters

args const(char[])[]

an array in this form: [program, other_args...]

cwd const(char)[]

the given directory comamnd as a string (by default it is the directory at which this file exists)

Return Value

Type: void

the result of waiting the process

Meta